To solve the 180th meridian issue, create two separate areas east and west of this line.
[70, 170, 60, -170]
.
To resolve the issue, split this rectangle into two smaller ones:
[70, 170, 60, 180]
(east of the meridian)[70, -180, 60, -170]
(west of the meridian)insideBoundingBox
to define these shapes with the value [[70, 170, 60, 180], [70, -180, 60, -170]]
.
[[70, 170], [80, 160], [90, 140], [80, 120], [70, 110], [60, 130], [70, 140]]
.
To resolve the issue, use insidePolygon
to split this shape into two smaller ones:
[[70, 170], [80, 160], [90, 140], [80, 120], [70, 110], [60, 130], [70, 140]]
(area east of the meridian)[[60, 130], [70, 140], [70, 170], [60, 180], [50, 160], [60, 150], [60, 130]]
(area west of the meridian)